home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6623 / 6623.xpi / content / editpl.xul < prev    next >
Extensible Markup Language  |  2009-05-30  |  2KB  |  63 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://bp/skin/overlay.css" type="text/css"?>
  4. <!DOCTYPE prefwindow SYSTEM "chrome://bp/locale/bp.dtd">
  5.  
  6.  
  7. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8. title="Better Privacy LSO protection list editor" id="bpEditPL"
  9. onload="bpopt.initPL();"
  10. onclose="bpopt.acceptPL();"
  11. persist="width, height, screenX, screenY"
  12. buttons=",">
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. <script type='application/x-javascript' src='chrome://bp/content/bpopt.js'/>
  20. <script type="application/x-javascript" src="chrome://bp/content/bp.js"/>
  21.  
  22.     <script type="application/x-javascript">
  23.       <![CDATA[
  24.     
  25.       ]]>
  26.     </script>
  27.  
  28.  
  29. <vbox flex="1">
  30.     <vbox flex="1">
  31.         <hbox flex="1">
  32.             <vbox flex="1">
  33.                 <textbox id="listTextbox" oninput="bpopt.listTextboxOnInput (event)"/>
  34.                 <listbox id="listBox" allowevents="true" onselect="bpopt.listBoxOnSelect (event)" flex="1">
  35.                 <listhead>
  36.                     <listheader label="&ListFolder;"/>
  37.                 </listhead>
  38.                 <listcols>
  39.                     <listcol flex="1"/>
  40.                     <listcol/>
  41.                 </listcols>
  42.                 </listbox>
  43.  
  44.             </vbox>
  45.             <vbox>
  46.                 <button id="listAdd" label="&ListAdd;" disabled="true"
  47.                     oncommand="bpopt.listAddOnCommand (event)"/>
  48.                 <button id="listEdit" label="&ListEdit;" flex="0" disabled="true"
  49.                     oncommand="bpopt.listEditOnCommand (event)"/>
  50.                 <button id="listRemove" label="&ListRemove;" flex="0" disabled="true"
  51.                     oncommand="bpopt.listRemoveOnCommand (event)"/>
  52.             </vbox>
  53.         </hbox>
  54.     </vbox>
  55.     <vbox>
  56.         <spacer orient="vertical" height="5px"/>
  57.         <hbox pack="end">
  58.             <button id="MacAcceptBtn" oncommand="bpopt.acceptPL(); window.close();" label="&Ok;"/>
  59.         </hbox>
  60.     </vbox>
  61. </vbox>
  62.  
  63. </dialog>